home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / round.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  473 b   |  23 lines

  1. <!--- This example shows the use of Round --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>
  5. Round Example
  6. </TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11. <H3>Round Example</H3>
  12.  
  13. <P>This function rounds a number to the closest
  14. integer.
  15. <UL>
  16.     <LI>Round(7.49) : <CFOUTPUT>#Round(7.49)#</CFOUTPUT>
  17.     <LI>Round(7.5) : <CFOUTPUT>#Round(7.5)#</CFOUTPUT>
  18.     <LI>Round(-10.775) : <CFOUTPUT>#Round(-10.775)#</CFOUTPUT>
  19. </UL>
  20.  
  21. </BODY>
  22. </HTML>       
  23.